body {
  font-family: sans-serif;
  margin: auto;
  max-width: 1280px;
}

.navbar {
  background-color: #313236;
  border-radius: 2px;
  max-width: 800px;
}

.navbar a {
  color: #aaa;
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

.navbar a:hover {
  color: #ffffff;
}

.container {
  width: 500px;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin : auto;
}

.container > img {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.back_orange {
  background-color: orange;
}

.back_maroon {
  background-color: maroon;
  color: white;
}

.font_large {
  font-size: large;
}

.font_small {
  font-size: small;
}

.font_oblique{
  font-style: oblique;
}

.font_italic{
  font-style: italic;
}

.font_roman{
  font-family: 'Times New Roman', Times, serif;
}